home *** CD-ROM | disk | FTP | other *** search
/ Interplay's Learn to Program Basic (Review Copy) / Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO / pc / ltpbasic / refxmpl / pset.bas < prev    next >
BASIC Source File  |  1998-04-07  |  94b  |  11 lines

  1. CLS
  2. While TRUE
  3. x = Random(0,319)
  4. y = Random(0,239)
  5. c = Random(0,235)
  6. Color c
  7. PSet x,y
  8. Wend
  9.  
  10.